home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / MPP.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  374b  |  19 lines

  1. #ifndef _LINUX_MPP_H
  2. #define _LINUX_MPP_H
  3.  
  4. /*
  5.  * Definitions related to Massively Parallel Processing support.
  6.  */
  7.  
  8. /* All mpp implementations must supply these functions */
  9.  
  10. extern void mpp_init(void);
  11. extern void mpp_hw_init(void);
  12. extern void mpp_procfs_init(void);
  13.  
  14. extern int mpp_num_cells(void);
  15. extern int mpp_cid(void);
  16. extern int get_mppinfo(char *buffer);
  17.  
  18. #endif
  19.